knitr::opts_chunk$set( echo = FALSE, message = FALSE, warning = FALSE, results = "hide"#, # fig.pos = "H" # ,fig.height = 4 , dpi = 300 ) library(tidyverse) library(flextable) load("../data/ctu_list.rda") load("../data/metc_region.rda") df <- read_csv("./analytics-export.csv", skip = 312) %>% filter(!str_detect(City, "Cheyenne|not set"), Region == "Minnesota") %>% mutate(City = case_when(City == "Saint Paul" | City =="South Saint Paul" ~ "St. Paul", City == "West Saint Paul" ~ "West St. Paul", TRUE ~ City)) %>% group_by(City) %>% summarise(Users = sum(Users), `Event count` = sum(`Event count`), `Engagement time` = sum(`Average engagement time` * Users)) %>% mutate(`Average time engaged (min)` = `Engagement time` / Users / 60) %>% left_join(ctu_list, by = c("City" = "GEO_NAME")) %>% sf::st_as_sf()
Growing Shade is a tree canopy enhancement and preservation tool which combines local stories and an interactive mapping tool.
The groundwork for Growing Shade was laid with Thrive MSP 2040 which included outcomes of sustainability and equity. A partnership with The Nature Conservancy and Tree Trust was formed and a tree canopy tool was conceptualized in 2020(?). An advisory group was formed and a stakeholder survey was conducted in early 2021 to inform the project. Growing Shade was developed over the summer and fall of 2021. The project had a soft launch in November 2021 for the purposes of soliciting user feedback and beta testing the project. Growing Shade was refined in response to the feedback, and official launched late January 2022.
This summary is intended to inform how successful (or not) outreach efforts have been thus far, and may be useful in refining future efforts and continuing to promote usage of the application to inform a more sustainable and equitable future for the Twin Cities region.
Starting in January 2022, Growing Shade has been presented to practitioners with a focus on foresters and planners.
Starting in April 2022, the focus of outreach efforts switched to general audiences.
\newpage
Since January 2022, Growing Shade has been accessed by 581 users (929 users since November 2021). This summary only looks at user data since January 2022. We don't know exactly how accurate internet provider locations are (and some people use vpns so we can't access the information), but this information may still be valuable! Note, all development traffic is run locally, so should not be contaminating these statistics.
Within the 7 county region, St. Paul and Minneapolis have the most users (Figure \@ref(fig:user-fig)).
df %>% # arrange(-Users) %>% # select(City, Users) %>% ggplot() + geom_sf(data = metc_region) + geom_sf(aes(fill = Users), lwd = .5) + theme_void()
\newpage
But the east metro (esp. Maplewood) has the highest engagement where people have spent the most time, on average, within the application (Figure \@ref(fig:time-fig)).
df %>% # mutate(EpU = `Event count` / Users) %>% ggplot() + geom_sf(data = metc_region) + geom_sf(aes(fill = `Average time engaged (min)`), lwd = .5) + theme_void()+ labs(fill = "Average\ntime\nengaged\n(min)")
While Growing Shade has a scope limited to the 7 county region, we do see engagement across the state (and also in neighboring states). Table \@ref(tab:other-city-table) lists the other cities in Minnesota where more than one person has accessed Growing Shade.
regulartable( df %>% filter(is.na(ntracts), Users > 1) %>% arrange(-Users) %>% sf::st_drop_geometry() %>% select(City, Users) ) %>% theme_zebra() %>% # theme_booktabs() %>% autofit(add_w = 0, add_h = 0) %>% set_table_properties(layout = "autofit") %>% set_caption("Other Minnesota cities where more than one person has accessed Growing Shade since January 2022.") %>% fontsize(size = 10, part = "all")
Most people are scrolling and clicking around the application. Since January 2022, there have been 30 file downloads.
Since January 2022, new users have mostly accessed the application via the direct link (435 users; https://metrotransitmn.shinyapps.io/growing-shade/). A growing number of users (160) are accessing the application via a referral from metrocouncil.org. Other ways of accessing the application (socials like linkedin, facebook, youtube, teams are lower - it's unclear if Twitter gets pulled out separately or if those users are part of the "direct link" users).
Just under 6% of users are accessing the application via a mobile platform.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.